home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 November / macformat-018.iso / Demos / Commander Demo / Commander 2.0.1 Demo / Commander 2.0.1 Demo.rsrc / TEXT_5153_HIDE PROCESS.txt < prev    next >
Encoding:
Text File  |  1994-08-15  |  1.3 KB  |  28 lines

  1. HIDE¬†PROCESS (processID)
  2.                                                                                     Pg 35-1
  3.  
  4. processID      Number    Process reference number of process to be hidden
  5.  
  6.  
  7. Hides all windows that belong to the process specified by processID. Even newly opened windows will be hidden until the command SHOW¬†PROCESS is called. A hidden process is not interrupted and continues executing.
  8.  
  9. All interface elements of process are hidden until the next SHOW¬†PROCESS. This means that opening a window while the process is hidden does not make the screen redraw or display. If the process is already hidden, the command has no effect.
  10.  
  11.  
  12. The only exception to this rule is the Debugger window. If the Debugger window is displayed when processID is a hidden process, processID is displayed and becomes the frontmost process.
  13.  
  14. If you do not want a process to be displayed at all, HIDE¬†PROCESS should be the first command in the process procedure. None of the default 4th Dimension (User/Runtime & Cache Manager) processes can be hidden using this command.
  15.  
  16. Even though a process may be hidden, the process is still executing.
  17.  
  18.  
  19. The following example will hide all the windows belonging to the current process:
  20.  
  21.         HIDE PROCESS (Current process)
  22.  
  23.  
  24.  
  25. See also: Current¬†process, Frontmost¬†process, 
  26.              SHOW¬†PROCESS
  27.  
  28.